DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T,TKey> Class / Find Method / Find(TKey) Method
The key value to search for.

In This Topic
    Find(TKey) Method
    In This Topic
    Finds items with the specified key value.
    Syntax
    'Declaration
     
    Public Overloads MustOverride Function Find( _
       ByVal key As TKey _
    ) As IndexQuery(Of T,TKey)
    public abstract IndexQuery<T,TKey> Find( 
       TKey key
    )

    Parameters

    key
    The key value to search for.

    Return Value

    An object enumerating items having the specified key value.
    See Also